
/* ========================================
   Owl Carousel CSS File
   ========================================*/
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: inline-flex;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  padding: 0 15px;
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: inline-block;
  /*width: 100%;*/
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}


/* owl dot */
.owl-theme .owl-dots {
  display: none;
  text-align: left;
  padding-left: 4px;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    margin: 4px 1px 10px 6px;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
}


/* owl Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div {
    background: #ff5e14;
    text-align: center;
    display: block;
    outline: 0;
    width: 34px;
    text-align: center;
    line-height: 34px;
    height: 34px;    
    color: #fff;
    top: 50%;
    font-size: 0;
    margin-top: -20px; 
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;     
}
.owl-theme .owl-controls .owl-nav div:hover {
  background: #333;
}
.owl-theme .owl-controls .owl-nav div.owl-prev {
    position: absolute;
    top: 165px;
    right: 59px;
    display: block;  
}
.owl-theme .owl-controls .owl-nav div.owl-prev:before,
.owl-theme .owl-controls .owl-nav div.owl-next:before {
    font-family: FontAwesome;    
    font-size: 20px;
    font-weight: 600;
    color: #fff; 
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}  

.owl-theme .owl-controls .owl-nav div.owl-prev:before {
   content: "\f104"; 
}
.owl-theme .owl-controls .owl-nav div.owl-prev:hover:before,
.owl-theme .owl-controls .owl-nav div.owl-next:hover:before {    
    color: #fff;
}
.owl-theme .owl-controls .owl-nav div.owl-next {
  position: absolute;
  top: 165px;
  right: 20px;
  display: block;
}
.owl-theme .owl-controls .owl-nav div.owl-next:before {    
    content: "\f105";    
}  

.ttm-boxes-spacing-5px.owl-carousel .owl-item {
    padding-right: 2.5px;
    padding-left: 2.5px;
    margin-bottom: 5px;
}




@media (max-width: 1299px){
  
}
@media (max-width: 1199px){

}
@media (max-width: 991px){
  
}
@media (max-width: 768px){
  .owl-theme .owl-controls .owl-nav div.owl-prev {
      display: none !important;
  }
  .owl-theme .owl-controls .owl-nav div.owl-next {
      display: none !important;
  }
}
.ttm-boxes-spacing-10px.owl-carousel .owl-item {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 10px;
}

/* testimonial-slide */
.testimonial-slide.owl-theme .owl-controls .owl-dots {
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    line-height: 1;
}
.testimonial-slide.owl-theme .owl-dots .owl-dot span {
        width: 12px;
    height: 10px;
    background-color: rgba(255, 255, 255,.1);
    transition: all 0.5s ease 0s;
    border: none;
}
.testimonial-slide.owl-theme .owl-dots .owl-dot.active span{
    width: 27px;
    border-radius: 5px;
    background-color: #09162a;
}
.ttm-bgcolor-skincolor .testimonial-slide.owl-theme .owl-dots .owl-dot.active span,
.ttm-bgcolor-darkgrey .testimonial-slide.owl-theme .owl-dots .owl-dot.active span{
    background-color: #fff;
}
.testimonial-slide.owl-theme.ttm-bgcolor-white .owl-dots .owl-dot.active span{background-color: #e9e9e9!important;}
/* project-slide */
.project-slide.owl-carousel .owl-item{padding: 0;}
.project-slide.owl-theme .owl-dots .owl-dot span{
    border: 2px solid #fff;
    width: 11px;
    height: 11px;
    margin: 0 5px;
}
.project-slide.owl-theme .owl-dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.project-slide.owl-theme .owl-dots .owl-dot.active span,
.project-slide.owl-theme .owl-dots .owl-dot:hover span{background-color: #fff!important;}

/************/
.ttm-row {
  padding: 70px 0 60px;
}
.ttm-row.bottomzero-padding-section.ttm-bgcolor-skincolor.ttm-bg.ttm-bgimage-yes.bg-img5.clearfix {
  margin-top: -61px;
}
.section-title.style2 {
  margin-bottom: 40px;
}
.section-title {
  position: relative;
}
.section-title.style2 .title-header, .section-title.style2 .title-desc, .section-title.style2 .title-desc2 {
  display: table-cell;
  vertical-align: middle;
}
.section-title.style2 .title-header {
  width: 40%;
  padding-right: 50px;
  margin-bottom: 0;
}
.section-title.style2 .title-desc, .section-title.style2 .title-desc2 {
  display: table-cell;
  vertical-align: middle;

}

.section-title .title-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 15px;
  color: #6e6e6e;
	padding-left: 1em;
}
.section-title .title-desc2 {
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
  color:#b8b8b8;
	padding-left: 1em;
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey {
  color: #1e2637 !important;
  border-color: #1e2637;
}
.section-title.style2 .title-header::after {
  content: "";
  left: 13em;
  height: 90%;
  position: absolute;
  top: 10%;
  width: 1px;
  border-right-width: 1px;
  background-color: #f0f0f0;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
/* ===============================================
    13.featured-imagebox ( contents with image)
------------------------*/
.featured-imagebox .featured-thumbnail{position: relative;overflow: hidden;}


/*  Team  */
.featured-imagebox-team{position: relative;overflow: hidden; margin: 0.5em;}
.featured-imagebox-team:hover .featured-thumbnail img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}
.featured-imagebox-team.style1 .featured-content{
    text-align: center;
    position: relative;
    z-index: 2;
   margin: -25px 30px 5px;
   padding: 18px 3px 22px;
    background-color: #fff;
    border-bottom: 5px solid transparent;
    -webkit-transition: .5s cubic-bezier(.3,.57,.55,1);
    transition: .5s cubic-bezier(.3,.57,.55,1);
}
.featured-imagebox-team .social-icons{
    position: absolute;
    top: 0;
    left: -40px;
    right: auto;
    padding: 10px;
    margin-top: 0;
    opacity: 0;
    z-index: 9;
    background-color: #000;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}
.featured-imagebox-team ul.social-icons li{
	display: block;line-height: 1.2em;
font-size: 1em;
font-weight: 500;
	margin-top: 0.5em;
text-align: center;}
.featured-imagebox-team ul.social-icons a {
    font-size: 14px;
    color: #fff;
    position: relative;
}
.featured-imagebox-team:hover .social-icons{opacity: 0.7;left: 0;width: 100%;color: #fff;
font-weight: 700;
font-size: 1.1em;
 height: 40%;
top: 64%;
z-index: 1;}
.featured-imagebox-team .featured-content p.category{ margin-bottom: 0; color: inherit;letter-spacing: -0.03em; }
/*  style2  */
.featured-imagebox-team.style2 .ttm-box-view-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    text-align: center;
    opacity: 0;
    transition: opacity .5s;
    background: linear-gradient(to bottom,rgba(4,62,76,0) 0%,rgba(38,48,69,.9) 100%);
    transition-property: top,opacity;
}
.featured-imagebox-team.style2:hover .ttm-box-view-overlay{opacity: 1;}
.featured-imagebox-team.style2 .featured-content{
    position: absolute;
    transition-duration: 0.5s;
    transform: translateY(130px);
    color: #fff;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
}
.featured-imagebox-team.style2:hover .featured-content{
    top: 50px;
}
.featured-imagebox-team.style2 .featured-title h5 a{color: #fff;}
.ttm-bgcolor-darkgrey .ttm-btn:hover.btn-inline.ttm-btn-color-skincolor{
    background-color: transparent;
    color: #fff;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #c62a73 /*iman*/ !important;
padding: 12px 20px;
border: 1px solid #c62a73 /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey:hover{
    background-color: #c62a73 /*iman*/;
    color: #fff !important;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-white{
    color: #fff!important;
    border-color: #fff;
    padding: 12px 20px;/*iman*/
border: 1px solid #eee /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-white:hover{
    background-color: #c62a73; /*iman*/
    color: #fff !important;/*iman*/
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-green{
    color: #fff!important;
    border-color: #fff;
    padding: 12px 20px;
border: 1px solid #8f9390;
	background-color: #ff5a3c;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-green:hover{
    background-color: #fcc30b; /*iman*/
    color: #fff !important;/*iman*/
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-green i{color: #fff!important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-fuccia{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #fff !important;
padding: 12px 20px;
	 background-color: #c62a73 /*iman*/;
border: 1px solid #fff;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-fuccia:hover{
    background-color: #f6ba42;color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-orange{
	color: #fff !important;padding: 12px 20px; background-color:#2553a8;border: 1px solid #fff;}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-orange:hover{
    background-color: #ff5a3c;  color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow{
	color: #fff !important;padding: 12px 20px;	 background-color:#f6ba42;border: 1px solid #fff;color: #333 !important;}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow:hover{
    background-color: #ff5a3c;  color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow2{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #ff5a3c /*iman*/ !important;
padding: 12px 20px;
border: 1px solid #fdb7aa /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow2:hover{
    background-color: #ff5a3c /*iman*/;
    color: #fff !important;
}

.ttm-row section {
  display: block;
}
 .featured-imagebox-team .social-icons {
  background-color: #2d4a8a;
}

.featured-imagebox-team .social-icons {
  position: absolute;
  top: 0;
  left: -40px;
  right: auto;
  padding: 10px;
  margin-top: 0;
  opacity: 0;
  z-index: 9;
  background-color: #043d72;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}
.social-icons {
  list-style: none;
  margin: 0;
    margin-top: 0px;
  padding: 0;
  font-size: 15px;
}

.featured-imagebox-team.style1:hover .featured-content {
  border-color:#f6ba42 !important;
	/*border-color: #ff5a3c !important;*/
}
.featured-title h5 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0px;

}

.featured-title h5:hover {color:#2d4a8a;}
@media (min-width: 768px){
.text-md-right {
  text-align: right !important;
}
}

/********
.neighbour-apartments-img img {
  height: 470px;
}*/
/********* Discover ************/

.portfolio-area {
  position: relative;
	padding: 4em;
  z-index: 2;
}
.portfolio-area::before {
  min-height: 600px;
	height:100% !important;
  content: "";
  height: 40%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background-color: #132e6b;
  position: absolute;
 /* background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 20%, transparent 10%), radial-gradient(circle, rgba(255, 255, 255, 0.05) 20%, transparent 10%);*/
  background-size: 10px 10px;
  background-position: 0 0, 0 0;
}
.grey-color { color: #bfb9b9 !important;}
.yellow {  color: #f6ba42 !important;}

.portfolio-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.portfolio-wrapper .portfolio-content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  padding: 54px 40px;
  opacity: 0;
  transition: all ease-out 0.25s;
}
.portfolio-wrapper .portfolio-content h4, .portfolio-wrapper .portfolio-content .custom-badge {
  transform: translateY(20px);
  opacity: 0;
  transition: all ease-out 0.25s;
}
.portfolio-wrapper .portfolio-content h4 {
  font-size: 25px;
line-height: 30px;
  font-weight: bold;
  margin-top: 18px;
}
.portfolio-wrapper .portfolio-content h4 a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 991.98px) {
  .portfolio-wrapper .portfolio-content h4 {
    font-size: 27px;
    line-height: 36px;
  }
}
.portfolio-wrapper .portfolio-img img {
  width: 100%;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
}
.portfolio-wrapper:hover .portfolio-content {
  opacity: 1;
}
.portfolio-wrapper:hover .portfolio-content h4, .portfolio-wrapper:hover .portfolio-content .custom-badge {
  transform: translateY(0);
  opacity: 1;
  transition: all ease-out 0.35s;
color:	#f6ba42;
}
.portfolio-wrapper:hover .portfolio-content h4 {
  transition-delay: 0.1s;
}
.portfolio-wrapper:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-wrapper.active-text .portfolio-content {
  opacity: 1;
}
.portfolio-wrapper.active-text .portfolio-content h4, .portfolio-wrapper.active-text .portfolio-content .custom-badge {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-menu button, .portfolio-menu a {
  background-color: transparent;
  border-color: transparent;
  color: #fff;
  padding: 4px 15px;
  display: block;
  margin: 5px;
}
.portfolio-menu button:hover, .portfolio-menu a:hover {
  text-decoration: none;
}
.portfolio-menu button.active, .portfolio-menu a.active {
  background-color: rgba(255, 255, 255, 0.12);
}

.menu-dark.portfolio-menu button, .menu-dark.portfolio-menu a {
  color: #798191;
  font-weight: 600;
}
.menu-dark.portfolio-menu button.active, .menu-dark.portfolio-menu a.active {
  background-color: #3d72fc;
  color: #fff;
}

.justify-content-lg-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.text-white {
  color: #fff !important;
}

div.discover {  
  display: none;
  position: relative;
  top: 3em;
  left: 0;
	padding: 0;
}
div.discover {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
}
.discover ul { padding-left: 0;}
.discover figure, .discover ul li {  margin: 0;}

.col-lg-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
/* Activities  */

.pb-90 { padding-bottom: 5.625rem;}
.w-100 { width: 100% !important;}
.col-md-4 { flex: 0 0 auto;  width: 33%;}

/*===== Sec Title Style 1 =====*/

.sec-title-inner {  position: relative; z-index: 1;}
.sec-title-inner > h2 {
  font-size: 4.375rem;
 /* font-weight: 800;
  letter-spacing: -3.5px;*/
  position: relative;
}
.sec-title-inner > h2 + span {margin-top: -5px;}
.sec-title-inner > span { color: #8b8b8b;  font-size: 1.0625rem;}
.sec-title-inner > h2 i {
  font-style: normal;
  color: #ecebeb;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  font-size: 9.5625rem;
  font-weight: 700;
  opacity: .65;
}
.fixed-bg + div .sec-title-inner > h2 i {color: #fff;}
.bg-color34 .sec-title-inner > h2 i {color: #273054;}
.sec-title.style2 .sec-title-inner > h2 {font-size: 3.75rem;}

.position-relative {  position: relative !important;}
.overflow-hidden { overflow: hidden !important;}

.post-style3 > i {
  left: 0;
  bottom: 0;
  opacity: 0;
  top: 80%;
}
.bg-color27 { background-color: #16bcbf;}
.bg-color8 { background-color: #442a72;}
.bg-color28 { background-color: #026fa0;}
.bg-color29 { background-color: #80d77a;}

.bg-color1 { background-color: #eaae37f2;}
.bg-color2 { background-color: #f6ba42;}/*#2197bb*/
.bg-color3 { background-color: #c62a73 ;}
.bg-color4 { background-color: #e8563b;}
.bg-color5 { background-color: #164ca2;}
.bg-color6 { background-color: #ff5a3c;}



.w-100 { width: 100% !important;}
.position-absolute { position: absolute !important;}
.mrg > div { padding: 0;}

/*===== Blog Style 3 =====*/

.post-style3 > i {
  left: 0;
  bottom: 0;
  opacity: 0;
  top: 80%;
}
.post-style3:hover > i { opacity: .7; top: 0;}
.post-info3 {
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5em 1.5em 0 2em;
  -webkit-transform: translateY(36.5%);
  -ms-transform: translateY(36.5%);
  -o-transform: translateY(36.5%);
  transform: translateY(36.5%);
}
.post-info3 > h3 {
  color: #fff;
  font-size: 1.5em;
  line-height: 3.125rem;
  max-width: 80%;
}
.post-info3 > i {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .95;
}
.post-info3 > p {
  color: #fff;
  font-size: 1em;
  line-height: 1.75rem;
  max-width: 90%;
  opacity: 0;
}
.post-info3 .post-meta {
  padding: 0;
  -webkit-border-radius:  0;
  border-radius: 0;
}
.post-info3 > h3 + .post-meta {margin-top: 0.625rem;}
.post-info3 > h3 a:hover, 
.post-info3 > h3 a:focus {
  color: #fff;
  opacity: .8;
}
.post-info3 .post-meta + p {margin-top: 0.875rem;}
.post-info3 > p + a {margin-top: 1.25rem;}
.post-info3 > a {
  display: inline-block;
  font-size: 1.75rem;
  color: #fff;
  opacity: 0;
}
.post-info3 > a:hover, 
.post-info3 > a:focus {opacity: .8;}
.post-style3:hover .post-info3 > p, 
.post-style3:hover .post-info3 > a {opacity: 1;}
.post-style3:hover .post-info3 > i {
  opacity: 0;
  bottom: -100%;
}
.post-style3:hover .post-info3 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.post-meta {
  display: inline-block;
  color: #fff;
  padding: 0.84375rem 0.9375rem;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Montserrat;
}

.post-style3.position-relative.overflow-hidden.w-100 {
  max-height: 400px;
}

/********* About Tabs ****************/

 .ttm-bgcolor-skincolor > .ttm-bg-layer{background-color: #2d4a8a;}
/*iman */ h4.text-theme-colored {
  color: var(--ltn__secondary-color);
  font-size: 1.45em;
}

/*** iman from here to the end **/

.bg-color31 {
  background-color: #1aac53;
}
.bg-color32 {
  background-color: #0089bc;
}
.w-100 {
  width: 100% !important;
}
.mid-container {
  max-width: 85.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.fixed-bg {
  background-attachment: scroll;
  background-size: cover;

  background-position: center;
  height: 100%;
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
/*===== Services Style 4 =====*/
.srv-info4 {padding: 3.125rem 3.3125rem;} /*iman*/
.srv-info4 > h3 {
  font-size: 2.05rem;
  color: #fff;
margin-bottom: 0.3em !important;
}
.srv-info4 > h3 + p {margin-top: 1.25rem;}
.srv-info4 > h3 a:hover { color:#060f1c;}
.srv-info4 > p {
  font-size: 1rem;
  color: #fff;
}
.srv-info4 > p + a {margin-top: 1.875rem;}
.srv-info4 > a {
  height: 3.4375rem;
  line-height: 3.75rem;
  text-align: center;
  width: 3.4375rem;
  color: #fff;
  background-color: rgba(0,0,0,.2);
  font-size: 1.875rem;
position: relative;
left: 84%;
top: -45%;
}
.d-inline-block:hover {background-color:#ee3364;}
.srv-info4.w-100.top {  padding-top: 2.3em;}
.srv-info4.w-100.bottom {padding-bottom: 2.65em; padding-top: 2.8em;}

/***** popup video******/

@media (max-width: 767px) {
.col-md-4.col-sm-12, .col-lg-4.col-sm-12, .col-lg-8.col-sm-12, .sidebar-area.blog-sidebar.ltn__right-sidebar {
  width: 100%;}

}
@media (max-width: 480px) {
.col-md-4.col-sm-12, .col-lg-4.col-sm-12, .col-lg-8.col-sm-12, .sidebar-area.blog-sidebar.ltn__right-sidebar {
  width: 100%;}
.slick-initialized .slick-slide {  display: grid;}
.col-lg-4 {width:100%; max-width: 100%;}
}
@media (max-width: 360px) {
.col-md-4.col-sm-12, .col-lg-4.col-sm-12, .col-lg-8.col-sm-12, .sidebar-area.blog-sidebar.ltn__right-sidebar {
  width: 100%;}
.slick-initialized .slick-slide {  display: grid;}
.col-lg-4 {width:100%; max-width: 100%;}
}
